home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Today - The Disc! 5 / CD-ROM Today - The Disc (Issue 5)(November 1994).ISO / mac / Mac shareware / Education / RLaB / rlib / asinh.r < prev    next >
Text File  |  1994-09-21  |  320b  |  15 lines

  1. //-------------------------------------------------------------------//
  2.  
  3. //  Syntax:  asinh ( X )
  4.  
  5. //  Description:
  6.  
  7. //  Asinh is the inverse hyperbolic sine of the element(s) of X.
  8.  
  9. //-------------------------------------------------------------------//
  10.  
  11. asinh = function ( x )
  12. {
  13.   return log (x + sqrt (x.^2 + 1));
  14. };
  15.